home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_091 / adlcomp / adlglob.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  801b  |  26 lines

  1. #include "adltypes.h"
  2. #include "adlprog.h"
  3.  
  4.  
  5. struct    header        hdr;        /* Actual header        */
  6. struct    verbrec        *verbspace;    /* Verb contents        */
  7. struct    objrec        *objspace;    /* Object contents        */
  8. struct    preprec        *prepspace;    /* Preposition contents        */
  9. struct    vp_syn        *verbsyn;    /* Verb synonyms        */
  10. int16            *varspace;    /* Stack & variables        */
  11. int16            *nounspace;    /* Noun indices            */
  12. address            *routspace;    /* Routine indexes        */
  13. int32            *str_tab;    /* String table            */
  14.  
  15. int16    bitpat[16] =  {    0x0001, 0x0002, 0x0004, 0x0008,
  16.             0x0010, 0x0020, 0x0040, 0x0080,
  17.             0x0100, 0x0200, 0x0400, 0x0800,
  18.             0x1000, 0x2000, 0x4000, 0x8000  },
  19.  
  20.     ibitpat[16] = {    0xFFFE, 0xFFFD, 0xFFFB, 0xFFF7,
  21.             0xFFEF, 0xFFDF, 0xFFBF, 0xFF7F,
  22.             0xFEFF, 0xFDFF, 0xFBFF, 0xF7FF,
  23.             0xEFFF, 0xDFFF, 0xBFFF, 0x7FFF  };
  24.  
  25. /*** EOF global.c ***/
  26.